1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

Fix dtsession_res so certain config/xrdb options will work properly.

This commit is contained in:
Jon Trulson 2012-06-20 01:37:05 -06:00
parent 1b74fb9ba7
commit f8b5b2fd2a
2 changed files with 17 additions and 2 deletions

View file

@ -66,7 +66,12 @@ XCOMM site: $TOG: site.def /main/23 1998/03/19 18:43:26 mgreess $
#ifdef AfterVendorCF #ifdef AfterVendorCF
# define X11ProjectRoot /X11 # if defined(LinuxArchitecture) || defined(FreeBSDArchitecture)
# define X11ProjectRoot /usr
# else
# define X11ProjectRoot /X11
# endif
# define ProjectRoot /usr/dt # define ProjectRoot /usr/dt
#ifdef SunArchitecture #ifdef SunArchitecture

View file

@ -39,7 +39,7 @@ EXTRA_OBJS = $(ALTDIRECTORY)SmMigResources.o
#endif #endif
#endif #endif
#if defined(SCOArchitecture) || defined(LinuxArchitecture) #if defined(SCOArchitecture)
SYS_LIBRARIES = -lcrypt -lm SYS_LIBRARIES = -lcrypt -lm
#endif #endif
@ -67,6 +67,16 @@ DEFINES = -DCDE_INSTALLATION_TOP=\"$(CDE_INSTALLATION_TOP)\" \
SYS_LIBRARIES = -lelf -lm -ldl -lgen SYS_LIBRARIES = -lelf -lm -ldl -lgen
#endif #endif
#if defined(LinuxArchitecture)
EXTRA_DEFINES = -D${PROGRAMS} $(XINOPT)
SYS_LIBRARIES = $(XPLIB) $(XINLIB) -ldl -lcrypt -lm
#endif
#if defined(FreeBSDArchitecture)
EXTRA_DEFINES = -D${PROGRAMS} $(XINOPT)
SYS_LIBRARIES = $(XPLIB) -lcrypt -lm
#endif
PROGRAMS=dtsession PROGRAMS=dtsession
/**** Every .o except version.o may only be built in a remote /**** Every .o except version.o may only be built in a remote