Skip to content

Commit

Permalink
Removed unused variables from Makefile.am(s)
Browse files Browse the repository at this point in the history
Moved helpviewer to src directory
Incidental chagnes to the mysql stubs


git-svn-id: http://svn.osgeo.org/qgis/trunk@4626 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Jan 9, 2006
1 parent 21c5c13 commit d57e3df
Show file tree
Hide file tree
Showing 16 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -31,7 +31,7 @@ docdatadir = $(datadir)/$(PACKAGE)/doc
docdata_DATA = AUTHORS

if HAVE_QT4
SUBDIRS = src doc tools i18n helpviewer resources images
SUBDIRS = src doc tools i18n resources images
endif

pkginclude_HEADERS = qgsconfig.h
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -440,7 +440,6 @@ AC_CONFIG_FILES([
doc/plugins/geoprocessing/buffer/Makefile
doc/plugins/geoprocessing/Makefile
doc/plugins/Makefile
helpviewer/Makefile
i18n/Makefile
images/Makefile
images/developers/Makefile
Expand All @@ -462,6 +461,7 @@ AC_CONFIG_FILES([
src/composer/Makefile
src/core/Makefile
src/designer/Makefile
src/helpviewer/Makefile
src/gui/Makefile
src/legend/Makefile
src/mac/Contents/Makefile
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Expand Up @@ -12,5 +12,5 @@
# depend on the existence of libqgis_gui.
# gui *must* be specified immediately before the providers
# subdirectory.
SUBDIRS = core ui legend raster composer widgets gui providers plugins $(MAC)
SUBDIRS = core ui legend raster composer widgets gui providers plugins $(MAC) helpviewer

2 changes: 1 addition & 1 deletion src/designer/Makefile.am
Expand Up @@ -25,7 +25,7 @@ qgisdesignerwidgets_la_SOURCES = qgsdesignerwidgets.cpp \

qgisdesignerwidgets_la_MOC = qgsprojectionselectorplugin.moc.cpp

projectionselector_la_LIBADD = ../src/gui/libqgis_gui.la $(QT_LDADD)
#projectionselector_la_LIBADD = ../src/gui/libqgis_gui.la $(QT_LDADD)
#qgisdesignerwidgets_la_LIBADD = $(QT_LDADD) ../widgets/projectionselector/libqgsprojectionselector.la
qgisdesignerwidgets_la_LDFLAGS = -avoid-version -module
qgisdesignerwidgets_la_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) -I../gui/ -I../legend
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/providers/mysql/mysql.pro
Expand Up @@ -2,7 +2,7 @@
# Automatically generated by qmake (2.00a) Sat Jan 7 08:34:57 2006
######################################################################

TEMPLATE = lib
TEMPLATE = app
TARGET +=
DEPENDPATH += .
INCLUDEPATH += . /usr/local/mysql/include/mysql ../../src ../..
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mysql/testmysql.cpp
Expand Up @@ -9,7 +9,7 @@ int main(int argc, char **argv)
// init mysql
MYSQL db;
MYSQL *res = mysql_init(&db);
MYSQL *con = mysql_real_connect(&db, "localhost", "sherman", "javado", "teZZt", 0, NULL, 0);
MYSQL *con = mysql_real_connect(&db, "localhost", "gsherman", 0, "test", 0, NULL, 0);
if(con)
{
std::cout << "Connection successful" << std::endl;
Expand Down
4 changes: 2 additions & 2 deletions src/ui/Makefile.am
Expand Up @@ -155,8 +155,8 @@ postgresUIHEADERS = ui_qgsdbsourceselectbase.h \
ui_qgspgquerybuilderbase.h

BUILT_SOURCES = $(qgis_ui_UIHEADERS) $(postgresUIHEADERS)

qgis_ui_LDADD = $(LDADD) $(QT_LDADD)
# the following is not used anywhere so its commented out
#qgis_ui_LDADD = $(LDADD) $(QT_LDADD)
qgis_ui_CXXFLAGS = $(PREFIX) $(PLUGINPATH) $(PKGDATAPATH) $(GDAL_CFLAGS) $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PG_INC) $(DEBUG_QGIS) -I../widgets/projectionselector/ -I./legend/ -I./raster/

CLEANFILES = $(BUILT_SOURCES)
Expand Down

0 comments on commit d57e3df

Please sign in to comment.