aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2018-11-27build manuals moved here from osmo-gsm-manuals.gitOliver Smith1-0/+43
Moved to doc/manuals/, with full commit history, in preceding merge commit. Now incorporate in the build system. Build with: $ autoreconf -fi $ ./configure --enable-manuals $ make Shared files from osmo-gsm-manuals.git are found automatically if - the repository is checked out in ../osmo-gsm-manuals; or - if it osmo-gsm-manuals was installed with "make install"; or - OSMO_GSM_MANUALS_DIR is set. Related: OS#3385 Change-Id: I1317131ed6765fec996344fc6ed08350187b615b
2018-11-05configure.ac: add --enable-sanitizeNeels Hofmeyr1-0/+12
Add --enable-sanitize to ./configure, as a copy-paste from libosmocore. When building libosmocore with --enable-sanitize, osmo-sip-connector cannot be linked if it doesn't include asan as well. This is particularly annoying to me when using sanitize.opts in osmo-dev. I'd have to turn off *all* asan everywhere just to include the osmo-sip-connector dep that was recently added. Change-Id: I18761802db2f29d9f0c7f269197d5b5e191142c5
2018-09-12Install sample cfg file to /etc/osmocompespin/systemdPau Espin Pedrol1-0/+2
Change-Id: I48ddd65125f25ac9f2d03bd43e7ab0a0bcf18196
2018-09-10Install systemd services with autotoolsPau Espin Pedrol1-0/+18
Change-Id: I672f49f1034554ce62347ff9493eca18340deb3a
2018-09-03configure.ac: Introduce --enable-werror optionPau Espin Pedrol1-0/+23
Change-Id: I1666df1721ba9acc950612558e07a1a2e7b2bb85
2018-05-24Logging: Log mncc_names in mncc_data()Keith1-0/+1
Links libosmocore (libosmogsm) for access to osmo_mncc_name() Remove reference to get_mncc_name() in src/mncc_protocol.h Uses osmo_mncc_name() to output to debug log which MNCC_* message was received. Change-Id: I161d1b841ac5fe1b7e092b329ae0674cb340f5ac
2018-05-06Bump version: 1.1.0.11-11a0-dirty → 1.1.11.1.1Pau Espin Pedrol1-2/+2
Change-Id: Iefb8ada270a7a34d5db1c1e3c94f72a02e2dd609
2017-10-28configure.ac: Depend on latest upstream libosmo-*Harald Welte1-2/+2
Change-Id: I9bb7ced1197effb1082a57b2ed060d94ab9648c8
2017-08-26Use release helper from libosmocoreMax1-0/+4
Change-Id: I1a65695d6191aa7647b9872e58da4a00bbad59e2 Related: OS#1861
2016-10-01configure: check for pkg-config presenceNeels Hofmeyr1-0/+7
Change-Id: Iaca22089bcb21b56048fa541f588c4ad4bed8f6d
2016-10-01build: be robust against install-sh files above the root dirNeels Hofmeyr1-0/+4
Explicitly set AC_CONFIG_AUX_DIR. To reproduce the error avoided by this patch: rm install-sh # in case it was already generated. touch ../install-sh # yes, outside this source tree autoreconf -fi This will produce an error like ... configure.ac:16: error: required file '../ltmain.sh' not found configure.ac:5: installing '../missing' src/Makefile.am: installing '../depcomp' autoreconf: automake failed with exit status: 1 See also automake (vim `which automake`) and look for 'sub locate_aux_dir'. Change-Id: I9c96c087bffb41533ef6fb9b1d00bd903d71693e
2016-04-24distcheck/tests: Add the referenced osmoappdesc.py for testingHolger Hans Peter Freyther1-0/+20
distcheck fails because the file is not present. Write it out to get our standard vty checking to work. Add simple Makefile and call it.
2016-03-21Initial commit for a MNCC to SIP gateway (and maybe auth GW too)0.0.1Holger Hans Peter Freyther1-0/+17
* It is written in C and using libosmovty and other data structures * It is using sofia-sip for the SIP handling as a good library for such a task * It is using glib for the sofia-sip event loop integration. In the future we can write our own root context but right now that looks like a necessary evil. No glib usage is allowed in this code and only sofia-glib is linked.