mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
Use installed X11 includes and libs
This commit is contained in:
parent
cd52651a3a
commit
eb811f26f8
6 changed files with 10 additions and 10 deletions
|
@ -131,7 +131,7 @@ Makefile.boot: imake.proto $(DEPENDSRC)/Makefile.proto depend.bootstrap $(IMAKES
|
|||
|
||||
imake.proto:
|
||||
cd $(IMAKESRC) && $(MAKE) $(FLAGS)
|
||||
$(RM) $(DEPENDSRC)/Makefile.proto
|
||||
$(RM) $(DEPENDSRC)/Makefile.proto $(DEPENDSRC)/.depend
|
||||
|
||||
$(DEPENDSRC)/Makefile.proto:
|
||||
$(IMAKE_CMD) -s $(DEPENDSRC)/Makefile.proto -f $(DEPENDSRC)/Imakefile -DTOPDIR=$(DEPENDTOP) -DCURDIR=$(DEPENDSRC)
|
||||
|
|
|
@ -73,11 +73,8 @@ USE_GCC = UseGcc
|
|||
# define HasGcc2 YES
|
||||
#endif
|
||||
|
||||
/* Use installed X11 includes/libs on FreeBSD 11+ */
|
||||
#if (OSMajorVersion >= 11)
|
||||
/* Use installed X11 includes/libs */
|
||||
#define UseInstalledX11 YES
|
||||
#endif
|
||||
|
||||
|
||||
/* For DtHelp TIFF processing routines. */
|
||||
#ifdef AMD64Architecture
|
||||
|
|
|
@ -106,6 +106,8 @@ XCOMM operating system: OSName
|
|||
#define GccGasOption -DGCCUSESGAS
|
||||
#define AsmDefines -DUSE_GAS
|
||||
|
||||
/* Use installed X11 includes/libs */
|
||||
#define UseInstalledX11 YES
|
||||
|
||||
#ifdef i386Architecture
|
||||
# ifndef OptimizedCDebugFlags
|
||||
|
|
|
@ -148,10 +148,8 @@ XCOMM operating system: OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVe
|
|||
# endif
|
||||
#endif
|
||||
|
||||
/* Use installed versions of Xm and X11 */
|
||||
#if OSMajorVersion >= 6
|
||||
/* Use installed X11 includes/libs */
|
||||
# define UseInstalledX11 YES
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Compiler Features
|
||||
|
|
|
@ -376,6 +376,9 @@ man_keywords:: @@\
|
|||
#define DependDefines -D__BUILTIN_VA_ARG_INCR
|
||||
#endif
|
||||
|
||||
/* Use installed X11 includes/libs */
|
||||
#define UseInstalledX11 YES
|
||||
|
||||
#define LdPreLib -L$(BUILDLIBDIR)
|
||||
#define PamUnixDefines -DPAM_NIS
|
||||
#define TtLargePICTable YES
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
BOOTSTRAPCFLAGS =
|
||||
CC = cc
|
||||
CDEBUGFLAGS = -O
|
||||
INCLUDES = -I../../include -I/usr/local/include/X11 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I../../imports/x11/include/X11
|
||||
INCLUDES = -I../../include -I/usr/local/include/X11 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I/usr/X11R7/include/X11
|
||||
CFLAGS = $(BOOTSTRAPCFLAGS) $(CDEBUGFLAGS) $(INCLUDES)
|
||||
SHELL = /bin/sh
|
||||
RM = rm -f
|
||||
|
@ -47,7 +47,7 @@ relink:
|
|||
clean:
|
||||
$(RM) ccimake imake.o imake
|
||||
$(RM_CMD) \#*
|
||||
$(RM) -r Makefile.proto Makefile Makefile.dep bootstrap
|
||||
$(RM) -r Makefile.proto Makefile Makefile.dep bootstrap .depend
|
||||
|
||||
depend:
|
||||
|
||||
|
|
Loading…
Reference in a new issue