Displaying 2 results from an estimated 2 matches for "gnome_cflag".
Did you mean:
gnome_cflags
1999 Dec 28
1
Patch to detect perl using autoconf
..._PROG(PERL, perl, perl)
AC_PATH_PROG(xauth_path, xauth)
dnl Use ip address instead of hostname in $DISPLAY
--- Makefile.in.orig Tue Dec 28 10:22:27 1999
+++ Makefile.in Tue Dec 28 10:23:54 1999
@@ -25,6 +25,7 @@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
+PERL=@PERL@
LDFLAGS=-L. @LDFLAGS@
GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
@@ -89,7 +90,7 @@
*.1 *.8 sshd_config ssh_config
manpages:
- $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.1.in $(srcdir)/*.8.in \
+ $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.1.in $(srcdir)/*.8.in \
$(srcdir)/ssh_config.in $(srcd...
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...- next part --------------
diff -urN openssh-1.2pre14.orig/Makefile.in openssh-1.2pre14/Makefile.in
--- openssh-1.2pre14.orig/Makefile.in Tue Nov 23 10:43:16 1999
+++ openssh-1.2pre14/Makefile.in Tue Nov 23 10:42:07 1999
@@ -17,6 +17,7 @@
LIBS=@LIBS@
AR=@AR@
RANLIB=@RANLIB@
+INSTALL=@INSTALL@
GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
GNOME_LIBS=`gnome-config --libs gnome gnomeui`
@@ -61,40 +62,40 @@
rm -f *.o core $(TARGETS) config.status config.cache config.log
install: all
- install -d $(bindir)
- install -d $(sbindir)
- install -d $(mandir)
- install -d $(mandir)/man1
- install -d...