From 38e734a745fef6c2ccb6fc9f657f106a69fc86e6 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 22 Feb 2012 14:13:02 +0000 Subject: [PATCH 1/1] Add an explicit interface config.mli. --- lib/Makefile.am | 1 + lib/config.mli | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 lib/config.mli diff --git a/lib/Makefile.am b/lib/Makefile.am index 3d72b24..cbd0a28 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -28,6 +28,7 @@ OCAMLOPTFLAGS = $(OCAMLCFLAGS) # These should be in alphabetical order. SOURCES = \ config.ml \ + config.mli \ whenfile.ml \ whenfile.mli \ whenlock.ml \ diff --git a/lib/config.mli b/lib/config.mli new file mode 100644 index 0000000..54b98db --- /dev/null +++ b/lib/config.mli @@ -0,0 +1,20 @@ +(* whenjobs + * Copyright (C) 2012 Red Hat Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + *) + +val package_name : string +val package_version : string -- 1.8.3.1