Add main.h to the list of installed header files.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3614 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2009-03-02 20:34:06 +00:00
parent 9b5d68fee7
commit c573d3cc22
3 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,8 @@
* geany.pc.in:
Adjust minimum required GTK version.
* src/Makefile.am, wscript:
Add main.h to the list of installed header files.
2009-02-27 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -59,6 +59,7 @@ geany_include_HEADERS = \
highlighting.h \
keybindings.h \
geany.h \
main.h \
msgwindow.h \
plugins.h \
plugindata.h \

View File

@ -395,7 +395,7 @@ def build(bld):
# Headers
bld.install_files('${PREFIX}/include/geany', '''
src/dialogs.h src/document.h src/editor.h src/encodings.h src/filetypes.h src/geany.h
src/highlighting.h src/keybindings.h src/msgwindow.h src/plugindata.h src/plugins.h
src/highlighting.h src/keybindings.h src/main.h src/msgwindow.h src/plugindata.h src/plugins.h
src/prefs.h src/project.h src/sciwrappers.h src/search.h src/support.h src/templates.h
src/toolbar.h src/ui_utils.h src/utils.h
plugins/pluginmacros.h plugins/geanyfunctions.h ''')