diff options
Diffstat (limited to 'news/husky-base-devel/files/patch-huskymak.cfg')
-rw-r--r-- | news/husky-base-devel/files/patch-huskymak.cfg | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/news/husky-base-devel/files/patch-huskymak.cfg b/news/husky-base-devel/files/patch-huskymak.cfg new file mode 100644 index 000000000000..2202ad752887 --- /dev/null +++ b/news/husky-base-devel/files/patch-huskymak.cfg @@ -0,0 +1,120 @@ +--- huskymak.cfg.orig Sat Jun 21 12:50:44 2003 ++++ huskymak.cfg Wed Oct 19 17:47:43 2005 +@@ -38,15 +38,15 @@ + # will not be compiled, and you won't know how to use the software ;-). + # You should take care that this directory is listed in the INFOPATH + # environment variable (if necessary, modify your /etc/profile file). +-# INFODIR=/usr/local/info ++INFODIR=$(PREFIX)/info + + # The same as above, but for DVI documentation. This requires a working + # "texi2dvi" program. +-# DVIDIR=${PREFIX}/share/doc/husky ++DVIDIR=${PREFIX}/share/doc/husky + + # The same as above, but for HTML documentation. This requires a working + # "texi2html" program. +-#HTMLDIR=$(PREFIX)/lib/husky ++HTMLDIR=$(PREFIX)/share/doc/husky + + # Name of the config file of MSGED TE: + MSGEDCFG=\"$(CFGDIR)/msged.cfg\" +@@ -116,7 +116,7 @@ + + # update dynamic library cache + # If your operating system does not need this, you may comment out this line. +-LDCONFIG=/sbin/ldconfig ++#LDCONFIG=/sbin/ldconfig + + # rename a file + MV=mv +@@ -139,8 +139,8 @@ + OSTYPE=UNIX + + # short name of operating system (used for PID lines etc.) +-UNAME=LNX +-#UNAME=BSD ++#UNAME=LNX ++UNAME=BSD + #UNAME=OS2 + #UNAME=BEOS + +@@ -151,7 +151,7 @@ + SHORTNAMES=0 + + # Perl support +-PERL=0 ++PERL=1 + + # ZipInternal packer + USE_HPTZIP=0 +@@ -179,7 +179,7 @@ + WARNFLAGS=-Wall + + # C-compiler: optimization +-OPTCFLAGS=-c -s -O3 -fomit-frame-pointer -fstrength-reduce -fPIC ++OPTCFLAGS= + + ifeq ( $(DYNLIBS), 0 ) + ifeq ($(OSTYPE), UNIX) +@@ -216,8 +216,8 @@ + DEBLFLAGS=-g + + # options for installing programs +-OPTIBOPT=-c -s -m 555 +-DEBIBOPT=-c -m 555 ++OPTIBOPT=-c -s -m 555 -o root -g wheel ++DEBIBOPT=-c -m 555 -o root -g wheel + + ifeq ($(DEBUG), 1) + IBOPT = $(DEBIBOPT) +@@ -226,19 +226,19 @@ + endif + + # options for installing scripts +-ISOPT=-c -m 555 ++ISOPT=-c -m 555 -o root -g wheel + + # options for installing shared libs +-ILOPT=-c -m 555 ++ILOPT=-c -m 555 -o root -g wheel + + # options for installing static libs +-ISLOPT=-c -m 444 ++ISLOPT=-c -m 444 -o root -g wheel + + # options for installing man-pages +-IMOPT=-c -m 444 ++IMOPT=-c -m 444 -o root -g wheel + + # options for installing includes +-IIOPT=-c -m 444 ++IIOPT=-c -m 444 -o root -g wheel + + # options for linking files + LNOPT=-sf +@@ -258,19 +258,19 @@ + ############################################################################# + + # extension of executable (e.g. ".exe") +-_EXE= ++EXE= + + # extension of object file +-_OBJ=.o ++OBJ=.o + + # extension of static libs +-_LIB=.a ++LIB=.a + + # extension of dynamic libs +-_DLL=.so ++DLL=.so + + # extension of compiled pascal units +-_TPU=.ppu ++TPU=.ppu + + # directory separator (DOS-like: "\\", Unix-like: "/") + |