## Process this file with automake to produce Makefile.in
## Subdirectories list
-SUBDIRS = src test
+SUBDIRS = src examples
## Default flags to run aclocal
ACLOCAL_AMFLAGS = -I project
Revision history:
$Log$
- Revision 1.2 2004/06/14 18:14:35 eronchie
- Added Configure options
- WARNING work in progress
-
- Revision 1.1.1.1 2004/05/26 18:45:05 eronchie
- Import of wms jobid
-
-->
<project name="jobid" default="dist">
<!-- =========================================
- Builds the GLite WMS jobid Module
+ Builds the GLite WMS Utils Jobid Module
========================================= -->
<!-- =========================================
#
# Revision history:
# $Log$
-# Revision 1.5 2004/06/16 11:02:05 eronchie
-# Added configure options
-# WARNING: Work in progress
-#
-# Revision 1.4 2004/06/14 18:14:35 eronchie
-# Added Configure options
-# WARNING work in progress
-#
-# Revision 1.3 2004/06/01 13:52:35 eronchie
-# Updated namespace for jobid.
-# Changed glite::wms::common::jobid namespace in glite::wms::jobid
-#
-# Revision 1.2 2004/05/31 14:03:30 eronchie
-# Merged with code in the infnforge repository
-#
-# Revision 1.1.1.1 2004/05/26 18:45:05 eronchie
-# Import of wms jobid
-#
#
#
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT([GLite WMS jobid], [0.0.0])
+AC_INIT([GLite WMS Utils Jobid], [0.0.0])
AC_CONFIG_AUX_DIR([./project])
AM_INIT_AUTOMAKE([1.6.3 subdir-objects])
AC_CONFIG_SRCDIR([src/jobid/cjobid.h])
AC_GLOBUS([], have_globus=yes, have_globus=no)
AC_MSG_RESULT(["GLOBUS found $have_globus"])
-have_glite_wms_common=no
+have_glite_wmsutils_exception=no
AC_GLITE
-AC_GLITE_WMS_COMMON([], have_glite_wms_common=yes, have_glite_wms_common=no)
-AC_MSG_RESULT(["GLITE_WMS_COMMON found $have_glite_wms_common"])
+AC_GLITE_WMSUTILS_EXCEPTION([], have_glite_wmsutils_exception=yes, have_glite_wmsutils_exception=no)
+AC_MSG_RESULT(["GLITE_WMSUTILS_EXCEPTION found $have_glite_wmsutils_exception"])
# Configuration items
AC_PREFIX_DEFAULT([/opt/glite])
AM_CONFIG_HEADER([src/autogen/config.h])
AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([examples/Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([src/jobid/Makefile])
-AC_CONFIG_FILES([test/Makefile])
AC_OUTPUT
STDCPP = -lstdc++
-JOBID = $(top_builddir)/src/jobid/libglite_wms_cjobid.la
+JOBID = $(top_builddir)/src/jobid/libglite_wmsutils_cjobid.la
check_PROGRAMS = testjobid
testjobid_SOURCES = testjobid.c
testjobid_LDADD = \
$(JOBID) \
- $(GLITE_WMS_COMMON_UT_EXCEPTIONS_LIBS) \
+ $(GLITE_WMSUTILS_EXCEPTIONS_LIBS) \
$(GLOBUS_SSL_THR_LIBS) \
$(STDCPP)
#include "JobIdExceptions.h"
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
using namespace std ;
}
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#ifndef GLITE_WMS_JOBID_JOBID_H
-#define GLITE_WMS_JOBID_JOBID_H
+#ifndef GLITE_WMSUTILS_JOBID_JOBID_H
+#define GLITE_WMSUTILS_JOBID_JOBID_H
/*
* JobId.h
typedef struct _edg_wlc_jobid_s* edg_wlc_jobid_t;
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
/**
std::ostream& operator<<(std::ostream& os, JobId const& id);
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#endif // GLITE_WMS_JOBID_JOBID_H
+#endif // GLITE_WMSUTILS_JOBID_JOBID_H
#include "JobIdExceptions.h"
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
using namespace std;
-using namespace glite::wms::common::utilities;
+using namespace glite::wmsutils::exception;
/*****************************
* JobIdException
}
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#ifndef GLITE_WMS_JOBID_EXCEPTIONS_H
-#define GLITE_WMS_JOBID_EXCEPTIONS_H
+#ifndef GLITE_WMSUTILS_JOBID_EXCEPTIONS_H
+#define GLITE_WMSUTILS_JOBID_EXCEPTIONS_H
/*
* JobIdExceptions.h
* Copyright (c) 2001 The European Datagrid Project - IST programme, all rights reserved.
*/
-#include "glite/wms/common/utilities/Exceptions.h"
+#include "glite/wmsutils/exception/Exceptions.h"
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
/**
* @author Alessandro Maraschini <alessandro.maraschini@datamat.it>
*/
-class JobIdException : public glite::wms::common::utilities::Exception {
+class JobIdException : public glite::wmsutils::exception::Exception {
public:
/**
* Update all mandatory Exception Information
}; //End CLass EmptyIdException
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#endif // GLITE_WMS_JOBID_EXCEPTIONS_H
+#endif // GLITE_WMSUTILS_JOBID_EXCEPTIONS_H
## *
## *********************************************************************
-lib_LTLIBRARIES = libglite_wms_jobid.la libglite_wms_cjobid.la
+lib_LTLIBRARIES = libglite_wmsutils_jobid.la libglite_wmsutils_cjobid.la
-libglite_wms_jobid_la_SOURCES = \
+libglite_wmsutils_jobid_la_SOURCES = \
JobId.cpp \
JobIdExceptions.cpp \
manipulation.cpp
-libglite_wms_cjobid_la_SOURCES = \
+libglite_wmsutils_cjobid_la_SOURCES = \
cjobid.c \
strmd5.c
-jobidincludedir = $(includedir)/glite/wms/jobid
+jobidincludedir = $(includedir)/glite/wmsutils/jobid
jobidinclude_HEADERS = \
JobId.h \
JobIdExceptions.h \
using namespace std;
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
namespace {
}
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#ifndef GLITE_WMS_JOBID_MANIPULATION_H
-#define GLITE_WMS_JOBID_MANIPULATION_H
+#ifndef GLITE_WMSUTILS_JOBID_MANIPULATION_H
+#define GLITE_WMSUTILS_JOBID_MANIPULATION_H
#include <string>
namespace glite {
-namespace wms {
+namespace wmsutils {
namespace jobid {
class JobId;
JobId from_filename( const std::string &filename );
} // namespace jobid
-} // namespace wms
+} // namespace wmsutils
} // namespace glite
-#endif /* GLITE_WMS_JOBID_MANIPULATION_H */
+#endif /* GLITE_WMSUTILS_JOBID_MANIPULATION_H */
// Local Variables:
// mode: c++