Skip to content

Commit 6cb223d

Browse files
committed
Run autoreconf in mac
1 parent b2e3b4f commit 6cb223d

File tree

5 files changed

+4872
-50
lines changed

5 files changed

+4872
-50
lines changed

Makefile.in

+26-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ POST_INSTALL = :
8585
NORMAL_UNINSTALL = :
8686
PRE_UNINSTALL = :
8787
POST_UNINSTALL = :
88+
build_triplet = @build@
89+
host_triplet = @host@
8890
subdir = .
8991
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9092
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
@@ -156,6 +158,8 @@ CTAGS = ctags
156158
CSCOPE = cscope
157159
DIST_SUBDIRS = $(SUBDIRS)
158160
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
161+
$(top_srcdir)/config/compile $(top_srcdir)/config/config.guess \
162+
$(top_srcdir)/config/config.sub \
159163
$(top_srcdir)/config/install-sh $(top_srcdir)/config/missing \
160164
README config/compile config/config.guess config/config.sub \
161165
config/depcomp config/install-sh config/missing
@@ -208,6 +212,10 @@ AUTOCONF = @AUTOCONF@
208212
AUTOHEADER = @AUTOHEADER@
209213
AUTOMAKE = @AUTOMAKE@
210214
AWK = @AWK@
215+
CC = @CC@
216+
CCDEPMODE = @CCDEPMODE@
217+
CFLAGS = @CFLAGS@
218+
CPP = @CPP@
211219
CPPFLAGS = @CPPFLAGS@
212220
CXX = @CXX@
213221
CXXDEPMODE = @CXXDEPMODE@
@@ -218,7 +226,13 @@ DEPDIR = @DEPDIR@
218226
ECHO_C = @ECHO_C@
219227
ECHO_N = @ECHO_N@
220228
ECHO_T = @ECHO_T@
229+
EGREP = @EGREP@
221230
EXEEXT = @EXEEXT@
231+
GLU_CFLAGS = @GLU_CFLAGS@
232+
GLU_LIBS = @GLU_LIBS@
233+
GL_CFLAGS = @GL_CFLAGS@
234+
GL_LIBS = @GL_LIBS@
235+
GREP = @GREP@
222236
INSTALL = @INSTALL@
223237
INSTALL_DATA = @INSTALL_DATA@
224238
INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -239,6 +253,9 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
239253
PACKAGE_URL = @PACKAGE_URL@
240254
PACKAGE_VERSION = @PACKAGE_VERSION@
241255
PATH_SEPARATOR = @PATH_SEPARATOR@
256+
PKG_CONFIG = @PKG_CONFIG@
257+
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
258+
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
242259
SET_MAKE = @SET_MAKE@
243260
SHELL = @SHELL@
244261
STRIP = @STRIP@
@@ -260,21 +277,30 @@ abs_builddir = @abs_builddir@
260277
abs_srcdir = @abs_srcdir@
261278
abs_top_builddir = @abs_top_builddir@
262279
abs_top_srcdir = @abs_top_srcdir@
280+
ac_ct_CC = @ac_ct_CC@
263281
ac_ct_CXX = @ac_ct_CXX@
264282
am__include = @am__include@
265283
am__leading_dot = @am__leading_dot@
266284
am__quote = @am__quote@
267285
am__tar = @am__tar@
268286
am__untar = @am__untar@
269287
bindir = @bindir@
288+
build = @build@
270289
build_alias = @build_alias@
290+
build_cpu = @build_cpu@
291+
build_os = @build_os@
292+
build_vendor = @build_vendor@
271293
builddir = @builddir@
272294
datadir = @datadir@
273295
datarootdir = @datarootdir@
274296
docdir = @docdir@
275297
dvidir = @dvidir@
276298
exec_prefix = @exec_prefix@
299+
host = @host@
277300
host_alias = @host_alias@
301+
host_cpu = @host_cpu@
302+
host_os = @host_os@
303+
host_vendor = @host_vendor@
278304
htmldir = @htmldir@
279305
includedir = @includedir@
280306
infodir = @infodir@
@@ -290,7 +316,6 @@ pdfdir = @pdfdir@
290316
prefix = @prefix@
291317
program_transform_name = @program_transform_name@
292318
psdir = @psdir@
293-
runstatedir = @runstatedir@
294319
sbindir = @sbindir@
295320
sharedstatedir = @sharedstatedir@
296321
srcdir = @srcdir@

0 commit comments

Comments
 (0)