summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleo2000-09-19 01:07:55 +0000
committerleo2000-09-19 01:07:55 +0000
commitf26268557011628bdf0a6ee73de6fbbe8aa84a99 (patch)
treeab0795dffa994b7ce1dd36677998ea7f012c39d1
parent807f3580ea146d49261fdc91581afe85886798ec (diff)
Fixed gtk-config name under FreeBSD
git-svn-id: http://svn.leocad.org/trunk@127 c7d43263-9d01-0410-8a33-9dba5d9f93d6
-rw-r--r--linux/module.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/module.mk b/linux/module.mk
index a77e169..227cf6b 100644
--- a/linux/module.mk
+++ b/linux/module.mk
@@ -4,7 +4,7 @@ SRC += linux/profile.cpp linux/gdkgl.c linux/gtkglarea.c \
linux/system.cpp linux/toolbar.cpp linux/gtkmisc.cpp \
linux/linux_gl.cpp
-CFLAGS += $(shell gtk-config --cflags)
-CXXFLAGS += $(shell gtk-config --cflags)
-LIBS += $(shell gtk-config --libs)
+CFLAGS += $(shell $(GTK_CONFIG) --cflags)
+CXXFLAGS += $(shell $(GTK_CONFIG) --cflags)
+LIBS += $(shell $(GTK_CONFIG) --libs)