[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: configure.ac
User: danmc
Date: 05/08/16 22:54:04
Modified: . configure.ac
Log:
- use the M4 program discovered at configure time as the default for
m4 in the PCB backends.
- use the PCB directories from configure time as the defaults in the PCB
backends. These can still be changed with --with-pcbm4dir and --with-pcbconfdir.
As usual, they can be changed at runtime with the gsch2pcb project file,
but hopefully this gets things nominally right by default.
Revision Changes Path
1.20 +16 -0 eda/geda/devel/gnetlist/configure.ac
(In the diff below, changes in quantity of whitespace are not shown.)
Index: configure.ac
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gnetlist/configure.ac,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- configure.ac 15 Aug 2005 10:12:22 -0000 1.19
+++ configure.ac 17 Aug 2005 02:54:04 -0000 1.20
@@ -21,6 +21,22 @@
# Change default location for rc files
AC_ARG_WITH(rcdir, [ --with-rcdir=path Change where the system-*rc files are installed], [opt_rcdir=$withval])
+# Change default location for pcb's m4 library directory
+AC_ARG_WITH(pcbm4dir,
+ [ --with-pcbm4dir=path Change where the PCB m4 files are installed [[default=${datadir}/pcb/m4]]],
+ [PCBM4DIR=$withval],
+ [PCBM4DIR="${datadir}/pcb/m4"]
+)
+AC_SUBST(PCBM4DIR)
+
+# Change default location for pcb's m4 site configuration directory
+AC_ARG_WITH(pcbm4dir,
+ [ --with-pcbconfdir=path Change where the PCB site config files are installed [[default=${sysconfdir}/pcb]]],
+ [PCBCONFDIR=$withval],
+ [PCBCONFDIR="${sysconfdir}/pcb"]
+)
+AC_SUBST(PCBCONFDIR)
+
#
# Command line flags end
#########################################################################